home *** CD-ROM | disk | FTP | other *** search
/ La Bible Des... Jeux / La Bible des... Jeux.iso / Les Sharewares / Arcade / Bolo 0.99.7 / More information / Sample Code / Std Autopilot / BoloIAC.h < prev    next >
Encoding:
Text File  |  1995-01-01  |  593 b   |  16 lines  |  [TEXT/KAHL]

  1. // Bolo code (C) Stuart Cheshire <cheshire@cs.stanford.edu> 1987-1994.
  2. // All rights reserved. This code is owned by Stuart Cheshire and is donated
  3. // free of charge for non-commercial use. You may not use this code in any
  4. // product sold for commercial profit, except shareware priced at $25 or less.
  5.  
  6. #define BoloMessageVersion 994
  7.  
  8. typedef enum { BoloSuspend = 0, BoloResume, BoloControl, BoloView } BoloCommand;
  9.  
  10. typedef struct
  11.     {
  12.     u_long sig;            // Must contain 'BOLO'
  13.     u_long version;        // For backwards and forwards compatibility
  14.     u_long command;        // The requested action
  15.     } BoloRequest;
  16.